@font-face {
    font-family: "vazir bold" ;
    src: 
    url("../../Fonts/ttf/Vazirmatn-Bold.ttf") format("truetype") , 
    url("../../Fonts/woff2/Vazirmatn-Bold.woff2") format("woff2") ;
}

body{
    background-color: rgb(255, 170, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "vazir bold";
    font-size: 100%;
}
main{
    margin-bottom: 50px     ;
    max-width: 450px;
    min-width: 285px;
    background-color: rgb(255, 170, 0);
}
*{
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}
.header{
    background-color: rgb(203, 135, 0) ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 6%;
}
.header_logo{
    width: 80px;
    height: 50px;
}

.header_icon{
    width: 80px;
    height: 50px;
}

.section{
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.section_item{
    padding: 6px;
    width: 90%;
    margin-top: 10px;
    background-color:white;
    display: flex;
    justify-content: right;
    align-items: center;
    border-radius: 25px;
    box-shadow: 0px 4px 6px black;
}
.img_section{
    width: 100px;
    height: 80px;
    border-radius: 25px;
}
.section_name{
    padding: 5px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;

}

.span{
    color: rgb(255, 170, 0);
}

.footer{
    background-color: rgb(203, 135, 0) ;
    height: 6%;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0px;
}

